reflect.rtype.String (method, view implemented interface methods)

25 uses

	reflect (current package)
		map.go#L17: 		panic("reflect: Key of non-map type " + t.String())
		type.go#L601: func (t *rtype) String() string {
		type.go#L617: 		panic("reflect: Bits of non-arithmetic Type " + t.String())
		type.go#L729: 	s := t.String()
		type.go#L750: 		panic("reflect: ChanDir of non-chan type " + t.String())
		type.go#L774: 		panic("reflect: Field of non-struct type " + t.String())
		type.go#L782: 		panic("reflect: FieldByIndex of non-struct type " + t.String())
		type.go#L790: 		panic("reflect: FieldByName of non-struct type " + t.String())
		type.go#L798: 		panic("reflect: FieldByNameFunc of non-struct type " + t.String())
		type.go#L806: 		panic("reflect: Len of non-array type " + t.String())
		type.go#L814: 		panic("reflect: NumField of non-struct type " + t.String())
		type.go#L822: 		panic("reflect: In of non-func type " + t.String())
		type.go#L830: 		panic("reflect: NumIn of non-func type " + t.String())
		type.go#L838: 		panic("reflect: NumOut of non-func type " + t.String())
		type.go#L846: 		panic("reflect: Out of non-func type " + t.String())
		type.go#L854: 		panic("reflect: IsVariadic of non-func type " + t.String())
		type.go#L868: 	panic("reflect: OverflowComplex of non-complex type " + t.String())
		type.go#L879: 	panic("reflect: OverflowFloat of non-float type " + t.String())
		type.go#L890: 	panic("reflect: OverflowInt of non-int type " + t.String())
		type.go#L901: 	panic("reflect: OverflowUint of non-uint type " + t.String())
		type.go#L962: 		panic("reflect: Fields of non-struct type " + t.String())
		type.go#L985: 		panic("reflect: Ins of non-func type " + t.String())
		type.go#L998: 		panic("reflect: Outs of non-func type " + t.String())
		type.go#L1430: 	s := "*" + t.String()
		type.go#L2021: 	return toRType(t).String()